home *** CD-ROM | disk | FTP | other *** search
/ Best of www.BestZips.com (Collector's Edition) / Best of WWW.BESTZIPS.COM Collector's Edition (JCSM Shareware) (JCS Marketing).ISO / prgtools / prtsut53.zip / SU1SRC.ZIP / DEMO10.PAS < prev    next >
Pascal/Delphi Source File  |  1997-02-16  |  1KB  |  58 lines

  1. unit Demo10;
  2.  
  3. interface
  4.  
  5. uses
  6.   {$IFDEF WIN32} Windows,{$ENDIF} Messages, SysUtils, Classes, Graphics,
  7.       Controls, Forms, Dialogs, Cb_lab, CBSystem, StdCtrls, CBBand,
  8.     Cb_Types, CBDetBan, ExtCtrls, CBReport
  9.   {$IFDEF WIN32} ,CBRich, ComCtrls, OleCtrls, ChartFX, ChartFXE, CBRchCon {$ENDIF};
  10.  
  11. type
  12.   TFBDemo10 = class(TForm)
  13.     CBReport1: TCBReport;
  14.     CBDetailBand1: TCBDetailBand;
  15.     PageFooter: TCBBand;
  16.     PageHeader: TCBBand;
  17.     Label1: TLabel;
  18.     Label2: TLabel;
  19.     CBSystem1: TCBSystem;
  20.     CBSystem2: TCBSystem;
  21.     Label3: TLabel;
  22.     Label4: TLabel;
  23.     Title: TCBBand;
  24.     CB_Label1: TCB_Label;
  25.     CB_Label2: TCB_Label;
  26.     CB_Label3: TCB_Label;
  27.     {$IFDEF WIN32}
  28.     ChartFXEnh1: TChartFXEnh;
  29.     ChartFXEnh2: TChartFXEnh;
  30.     ChartFXEnh3: TChartFXEnh;
  31.     ChartFXEnh4: TChartFXEnh;
  32.     RichEditE1: TRichEditE;
  33.     CBRichContinue1: TCBRichContinue;
  34.     Shape1: TShape;
  35.     Label5: TLabel;
  36.     ChartFXEnh5: TChartFXEnh;
  37.     ChartFXEnh6: TChartFXEnh;
  38.     Label6: TLabel;
  39.     Panel1: TPanel;
  40.     Panel2: TPanel;
  41.     Label7: TLabel;
  42.     CBRichContinue2: TCBRichContinue;
  43.     {$ENDIF}
  44.   private
  45.     { Private declarations }
  46.   public
  47.     { Public declarations }
  48.   end;
  49.  
  50. var
  51.   FBDemo10: TFBDemo10;
  52.  
  53. implementation
  54.  
  55. {$R *.DFM}
  56.  
  57. end.
  58.